home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994 November: Tool Chest / Dev.CD Nov 94.toast / New System Software Extensions / OpenDoc A6 / OpenDoc Parts Framework / OPF / Examples / Text / Sources / StyleInfo.cpp < prev    next >
Encoding:
Text File  |  1994-04-21  |  998 b   |  45 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                            StyleInfo.cpp
  4. //    Release Version:    $ 1.0d1 $
  5. //
  6. //    Author:                        Anthone Burbidge
  7. //    Creation Date:        3/28/94
  8. //
  9. //    Copyright:    © 1993, 1994 by Apple Computer, Inc., all rights reserved.
  10. //
  11. //========================================================================================
  12.  
  13. #ifndef _TEXTPART_
  14. #include "TextPart.h"
  15. #endif
  16.  
  17. #ifndef _STYLEINFO_
  18. #include "StyleInfo.h"
  19. #endif
  20.  
  21. #pragma segment TextPartSegment
  22.  
  23.  
  24. //========================================================================================
  25. // Global variables definitions
  26. //========================================================================================
  27.  
  28. SFontSizeTable gFontSizeTable[] = 
  29. {
  30.     { "\p9", 9 },
  31.     { "\p10", 10 },
  32.     { "\p11", 11 },
  33.     { "\p12", 12 },
  34.     { "\p14", 14 },
  35.     { "\p18", 18 },
  36.     { "\p24", 24 },
  37.     { "\p36", 36 },
  38.     { "\p64", 64 },
  39.     { "\p128", 128 },
  40.     { "\p256", 256 },
  41.     { "\p512", 512 },
  42.     { NULL, 0 }
  43. };
  44.  
  45.